home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Commands / Protocols / Creating.h < prev    next >
Text File  |  2000-06-23  |  194b  |  17 lines

  1. // Creating.h
  2.  
  3. #ifndef Creating_h
  4. #define Creating_h
  5.  
  6. class Creating
  7.   {
  8.     protected:
  9.         ~Creating()            {}
  10.  
  11.     public:
  12.         virtual bool CanCreate() const = 0;
  13.         virtual void Create() = 0;
  14.   };
  15.  
  16. #endif
  17.